home *** CD-ROM | disk | FTP | other *** search
/ The X-Philes (2nd Revision) / The X-Philes Number 1 (1995).iso / xphiles / hp48_2 / vsrc.tar / voyager7_src / modes.h < prev    next >
C/C++ Source or Header  |  1991-02-27  |  450b  |  19 lines

  1. #if !defined(modes_included)
  2. #define modes_included
  3.  
  4. typedef struct _modes_t modes_t;
  5.  
  6. struct _modes_t {
  7.     int follow;    /* follow absolute and BET branches */
  8.     int info;    /* display informational (debug) messages */
  9.     int limit;    /* number of things to show */
  10.     int pager;    /* wait between screens */
  11.     int prompt;    /* prompt for commands */
  12.     int stop;    /* stop automatically */
  13.     int unmode;    /* 0: unthread, 1: unassemble */
  14. };
  15.  
  16. extern modes_t modes;
  17.  
  18. #endif
  19.